Backported Google Talk mail notification support and disabling of the mail notificati...
[adiumx.git] / Frameworks / Adium Framework / AIListContact.h
blob956f17012d45744fc953f45cc54b5578ce8e536b
1 /*
2 * Adium is the legal property of its developers, whose names are listed in the copyright file included
3 * with this source distribution.
4 *
5 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
6 * General Public License as published by the Free Software Foundation; either version 2 of the License,
7 * or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
10 * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
11 * Public License for more details.
13 * You should have received a copy of the GNU General Public License along with this program; if not,
14 * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 #import "AIListObject.h"
19 @class AIAccount, AIContentObject;
21 @interface AIListContact : AIListObject {
22 AIAccount *account;
23 NSString *remoteGroupName;
24 NSString *internalUniqueObjectID;
27 - (id)initWithUID:(NSString *)inUID account:(AIAccount *)inAccount service:(AIService *)inService;
28 - (id)initWithUID:(NSString *)inUID service:(AIService *)inService;
29 - (void)setRemoteGroupName:(NSString *)inName;
30 - (NSString *)remoteGroupName;
31 - (AIAccount *)account;
32 - (NSString *)internalUniqueObjectID;
33 + (NSString *)internalUniqueObjectIDForService:(AIService *)inService account:(AIAccount *)inAccount UID:(NSString *)inUID;
34 - (void)restoreGrouping;
35 - (AIListContact *)parentContact;
37 - (void)setIsMobile:(BOOL)isMobile notify:(NotifyTiming)notify;
39 @end